home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / etc / skel / .bash_profile < prev    next >
Encoding:
Text File  |  2006-09-19  |  414 b   |  17 lines

  1. # ~/.bash_profile: executed by bash(1) for login shells.
  2. # see /usr/share/doc/bash/examples/startup-files for examples.
  3. # the files are located in the bash-doc package.
  4.  
  5. # the default umask is set in /etc/login.defs
  6. #umask 022
  7.  
  8. # include .bashrc if it exists
  9. if [ -f ~/.bashrc ]; then
  10.     . ~/.bashrc
  11. fi
  12.  
  13. # set PATH so it includes user's private bin if it exists
  14. if [ -d ~/bin ] ; then
  15.     PATH=~/bin:"${PATH}"
  16. fi
  17.